SourceRange

data class SourceRange(startLine: Int, startColumn: Int, endLine: Int, endColumn: Int)

Text range within a resource. All numbers are zero-based.

Constructors

SourceRange
Link copied to clipboard
fun SourceRange(startLine: Int, startColumn: Int, endLine: Int, endColumn: Int)

Properties

endColumn
Link copied to clipboard
val endColumn: Int
End column of range (exclusive).
endLine
Link copied to clipboard
val endLine: Int
End line of range
startColumn
Link copied to clipboard
val startColumn: Int
Start column of range (inclusive).
startLine
Link copied to clipboard
val startLine: Int
Start line of range.

Sources

jvm source
Link copied to clipboard